home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / double_const.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  777b  |  23 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. from test.test_support import TestFailed
  5. PI = 3.1415926535897931
  6. TWOPI = 6.2831853071795862
  7. PI_str = '3.14159265358979324'
  8. TWOPI_str = '6.28318530717958648'
  9.  
  10. def check_ok(x, x_str):
  11.     if not x > 0.0:
  12.         raise AssertionError
  13.     x2 = eval(x_str)
  14.     if not x2 > 0.0:
  15.         raise AssertionError
  16.     diff = abs(x - x2)
  17.     if x2 + diff / 8.0 != x2:
  18.         raise TestFailed('Manifest const %s lost too much precision ' % x_str)
  19.     
  20.  
  21. check_ok(PI, PI_str)
  22. check_ok(TWOPI, TWOPI_str)
  23.